home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20020314-20021006 / 000261_fdc@columbia.edu_Fri Aug 2 12:56:21 EDT 2002.msg < prev    next >
Text File  |  2020-01-01  |  4KB  |  73 lines

  1. Article: 13577 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.unix.aix,comp.protocols.kermit.misc
  5. Subject: Re: Secure resumable file transfer on AIX
  6. Date: 2 Aug 2002 12:55:41 -0400
  7. Organization: Columbia University
  8. Lines: 56
  9. Message-ID: <aiedid$ks1$1@watsol.cc.columbia.edu>
  10. References: <97n29.21591$vg.830729@bin2.nnrp.aus1.giganews.com> <aie5h3$jag$1@watsol.cc.columbia.edu> <aieces$nag$1@samba.rahul.net>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1028307343 2148 128.59.39.139 (2 Aug 2002 16:55:43 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 2 Aug 2002 16:55:43 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.unix.aix:238375 comp.protocols.kermit.misc:13577
  16.  
  17. In article <aieces$nag$1@samba.rahul.net>,  <dold@06.usenet.us.com> wrote:
  18. : : In article <97n29.21591$vg.830729@bin2.nnrp.aus1.giganews.com>,
  19. : : George Saylor <gmsayloriii@comcast.net> wrote:
  20. : : : We have a requirement to copy moderate sized files ( up to 1.5 GB) over
  21. : : : a WAN between two H80's 1000 miles apart.  I am trying to find a good
  22. : : : product that supports AIX and can perform resumable file transfers,
  23. : : : compression is a plus, and secure is a guaranteed sale...The whole
  24. : : : operation must be non-interactive of course.
  25. : In comp.protocols.kermit.misc Frank da Cruz <fdc@columbia.edu> wrote:
  26. : : C-Kermit:
  27. : :   http://www.columbia.edu/kermit/ckermit.html
  28. : :  . It can perform resumable transers.
  29. : :  . It does compression on the fly when you use Kermit protocol.
  30. : :  . You have your choice of Kerberos, SSL/TLS, or SRP security.
  31. : :  . It is fully scriptable using its own built-in scripting language.
  32. : Easily scriptable.  The simple task of resumable transfers is so
  33. : automatic, I don't really consider it scripting.  More like a batch file.
  34. : The automatic compression is not intense.  I wouldn't compare it to
  35. : zip/unzip. When I was transferring a 20-30MB file on a 14400 line,
  36. : I made zip/unzip part of the script at each end.
  37. True, Kermit protocol compression is usually not as effective a zip or
  38. gzip, but C-Kermit lets you use compression/decompression (or any other 
  39. kind of) filters on either end of the transfer, so you can use your
  40. favorite utility in the pipeline to compress/decompress on the fly.  See:
  41.  
  42.   http://www.columbia.edu/kermit/ckermit70.html#x4.2
  43.  
  44. This is true for both Kermit protocol and FTP transfers (except of course
  45. there the ability of an FTP server to compress or decompress using the
  46. same method -- such as gzip/gunzip -- depends on the server).
  47.  
  48. Also, I forgot to mention previously that you can find out about secure
  49. FTP servers here:
  50.  
  51.   http://www.columbia.edu/kermit/security.html#servers
  52.  
  53. : Unattended?  I never noticed the kermit part of the process at all.  The
  54. : batch job that created the file at one end invoked kermit as its final
  55. : step.  At the other end, when the file appeared, it was processed.  At
  56. : one end, the guy would load a tape on a PC-based tape reader, and walk
  57. : out the door for the evening as soon as the zip started.  His only concern
  58. : was a good tape read.  At the other end, it just fell in to the process
  59. : flow... no one noticed when.
  60. : I've used Kermit on AIX, Solaris, Linux, DOS and Windows95+
  61. : interchangeably, with perfect interoperability.
  62. Another satisfied customer :-)
  63.  
  64. - Frank
  65.